home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 421_01 / timer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-31  |  206 b   |  17 lines

  1. // TIMER_C
  2.  
  3. #ifndef _TIMER_H
  4. #define _TIMER_H
  5.  
  6. class timer_C
  7. {
  8. public:
  9.   timer_C();
  10.   ~timer_C();
  11.   long readtimer(void);
  12.   long elapsed(unsigned long start,unsigned long stop);
  13. };
  14.  
  15. #endif
  16.  
  17.